* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--mainFont);
}

:root {
    --unset: unset;
    /* font */
    --mainFont: 'Plus Jakarta Sans';
    --secondaryFont: 'Array-Regular';
    --regularWeight: 400;
    --mediumWeight: 500;
    /* color */
    --primaryColor: #DFD0FB;
    --secondaryColor: #F4F1F9;
    --lightTextColor: #434356;
    --blackColor: #000;
    --whiteColor: #fff;
    --greenColor: #48FFB0;
    --purpleColor: #9E6FF4;
}

*::-moz-selection,
*::selection {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

html,
body {
    line-height: 1.2;
    font-size: 10px;
    background: var(--whiteColor);
    color: var(--secondaryColor);
    overflow-x: hidden;
    font-family: var(--mainFont);
    scroll-behavior: smooth;
}

body {
    background: var(--secondaryColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}

a {
    text-decoration: none;
    color: var(--purpleColor);
    display: inline-block;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--primaryColor);
    cursor: pointer;
}

img {
    width: auto;
    max-width: 100%;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

:is(:focus, :focus-visible, :focus-within, :active:focus) {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section {
    width: 100%;
    display: block;
    margin: 0 auto;
}

*::-webkit-scrollbar {
    width: 0;
}

.common-padding {
    padding: 80px 0;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 10px;
    width: max-content;
    padding: 16px 24px;
    font-size: 1.6rem;
    line-height: 120%;
    color: var(--blackColor);
    font-weight: var(--mediumWeight);
    border: 1px solid var(--greenColor);
    border-radius: 41px;
    background: var(--greenColor);
    transition: .60s ease-in;
}

.btn:hover {
    transform: scale(1.1);
    /* background: var(--whiteColor);
    border-color: var(--whiteColor); */
}

.btn img {
    transition: .20s ease-in;
}

.btn:hover img {
    transform: rotate(45deg);
}

/* common-components */
.title_up {
    font-size: 24px;
    line-height: 100%;
    color: var(--blackColor);
    font-weight: var(--mediumWeight);
    margin: 0 0 16px;
}

.top-heading {
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    font-size: 144px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;

}

.description p {
    font-size: 16px;
    font-weight: var(--regularWeight);
    line-height: 150%;
}

.center {
    text-align: center;
}

.text-white {
    color: var(--whiteColor);
}

.assets_header .description {
    max-width: 550px;
    margin: 0 auto;
}

.assets_header .description p {
    color: #231F20;
}

.d-flex {
    display: flex;
}


/* bounce-animation */
.bounce_anim {
    -webkit-animation: upsitedown 5s linear .2s infinite;
    animation: upsitedown 5s linear .2s infinite;
}

@-webkit-keyframes upsitedown {
    0% {
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    100% {
        -webkit-transform: translate(-5%, 5%);
        transform: translate(-5%, 5%);
    }
}

@keyframes upsitedown {
    0% {
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    100% {
        -webkit-transform: translate(-5%, 5%);
        transform: translate(-5%, 5%);
    }
}

.benefit_left img,
.tokenomies_right img,
.faq-left img {
    -webkit-animation: upsitedown 2s linear .2s infinite alternate;
    animation: upsitedown 2s linear .2s infinite alternate;
}

/* header */
.main_nav.navbar {
    padding: 20px 0;
    /* padding: 39px 0; */
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.sticky .main_nav.navbar {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    background: #29174b;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 180px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-collapse .navbar-nav {
    gap: 60px 60px;
    margin: 0 auto;
}

.navbar-collapse .menu-item .menu-link {
    font-size: 1.4rem;
    line-height: 150%;
    color: var(--whiteColor);
    font-family: var(--mainFont);
    font-weight: var(--mediumWeight);
    padding: 0;
}

.navbar-collapse .menu-item .menu-link:hover {
    /* color: var(--secondaryColor); */
}

.menu-item {
    position: relative;
}

.navbar-collapse .menu-item .menu-link.active:before {
    top: 2px;
    left: -12px;
    content: "*";
    position: absolute;
    width: 6px;
    height: 6px;
    color: var(--greenColor);
}

.sign-btn {
    border: 1px solid var(--greyColor);
    color: var(--whiteColor);
    padding: 7px 23px;
    font-size: 1.5rem;
    line-height: 18px;
    text-transform: uppercase;
    border-radius: 15px;
    background: transparent;
}

.sign-btn:hover {
    background: var(--primaryColor);
}

.nav-right {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px 10px;
    align-items: center;
}

.nav-right li a.share-btn svg {
    height: 24px;
}

.nav-right li a.share-btn:hover svg path {
    stroke: var(--primaryColor);
}

.nav-right li a.share-btn {
    border-radius: 50%;
    border: 1px solid var(--greyColor);
    padding: 0;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login_link {
    font-size: 1.4rem;
    color: var(--whiteColor);
    padding: 12px 24px;
    transition: .60s ease-in;
}
/* .login_link:hover {
    background: var(--greenColor);
    color: var(--blackColor);
    border-radius: 41px;
} */

.login_link:hover {
    transform: scale(1.1);
}

.sign_up {
    background: var(--whiteColor);
    display: inline-block;
    border-color: var(--whiteColor);
}
.sign_up:hover {
    background: var(--greenColor);
    border-color: var(--greenColor);
    transform: scale(1);
}

/* banner-section */
.banner_section {
    padding: 120px 0 60px;
    background: radial-gradient(82.5% 90.11% at 80.64% 44.61%, #9E6FF4 0%, #0F0326 87%);
    position: relative;
}

.inner-banner_section {
    align-items: center;
}

.main_heading {
    color: var(--whiteColor);
    font-size: 68px;
    font-weight: var(--mediumWeight);
    line-height: 100%;
    letter-spacing: -1.36px;
}

.heading {
    color: var(--blackColor);
    font-size: 48px;
    font-weight: var(--mediumWeight);
    line-height: 100%;
    letter-spacing: -0.96px;
    margin-top: -58px;
    margin-bottom: 42px;
}

.banner_desc {
    color: var(--whiteColor);
    font-size: 1.6rem;
    line-height: 150%;
    max-width: 600px;
    margin: 24px 0 48px;
}

.banner_content,
.banner-image {
    width: 50%;
}

.banner-image img {
    max-width: 635px;
    height: 750px;
    object-fit: cover;
}

.banner_benfit {
    padding: 105px 0 0;
    gap: 64px 64px;
}

.banner_benfit li {
    display: flex;
    align-items: center;
    gap: 12px 12px;
    font-size: 16px;
    color: var(--whiteColor);
    font-weight: var(--mediumWeight);
}

.banner-image {
    position: relative;
    text-align: center;
    z-index: 0;
}

.banner_slide_inner {
    background: #3B2466;
    padding: 15px 68px;
    -webkit-transform: rotate(-2.0deg);
    -ms-transform: rotate(-2.0deg);
    transform: rotate(-2.0deg);
    width: 180%;
    position: absolute;
    left: -10%;
    top: 16%;
}

.banner_slide_inner .slidecont-wrap .slide-content,
.banner_slide_inner .slidecont-wrap {
    display: flex;
    align-items: center;
    gap: 20px 20px;
}

.banner_slide_inner .slidecont-wrap .slide-content,
.banner_slide_inner ul.flex-row .slide-content span {
    color: var(--greenColor);
    font-family: var(--secondaryFont);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;

}

.banner_slide_inner .swiper-slide {
    width: max-content;
}

.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

/* .banner-image:before {
    position: absolute;
    left: 0;
    bottom: 40px;
    content: "";
    background: url(/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/banner-vector.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 82%;
    z-index: -1;
    opacity: 80%;
} */


/* Benefits Section */
.inner_benefits_section {
    gap: 86px 86px;
    align-items: center;
}

.benefit_left,
.benefit_right {
    width: 50%;
}

.benefit-cards {
    padding: 24px 24px;
    border-radius: 12px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #FFF 0%, #F4F1F9 100%);
}

.benefit-cards .description p {
    color: var(--lightTextColor);
    font-size: 16px;
    font-weight: var(--regularWeight);
    line-height: 150%;
}

.benefit-cards:last-child {
    margin: 0;
}

.benefit-icons {
    background: url('/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/icon_benefit_grad.png') no-repeat;
    background-size: contain;
    height: 24px;
}

.benefit-cards .title_up {
    margin: 12px 0 24px;
}

.bene_icns {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 4px;
    width: 20px;
}

/* How it Work CSS */
.howit_work {
    padding-bottom: 140px;
}

.inner_worksection {
    padding-top: 36px;
    gap: 50px 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.work_cards {
    width: 30%;
}

.work_img_section {
    height: 330px;
    background: url('/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/work-bg.png') no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.work_img_section img {
    height: 270px;
    object-fit: cover;
}

.work_desc_section {
    padding: 24px 24px 48px;
    margin: 12px 0 0;
    border-radius: 8px;
    background: var(--whiteColor);
}

.step-label {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background: #14072D;
}

.step-label p {
    color: var(--greenColor);
    font-family: var(--secondaryFont);
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.work_desc_section .title_up {
    margin: 12px 0 16px;
}

.work_desc_section .description p {
    color: var(--lightTextColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

/* Utility Section */
.utility_section {
    padding: 60px 0 60px;
    background: radial-gradient(77.77% 65.72% at 52.78% 15.56%, #9E6FF4 0%, #0F0326 100%);
}

.inner_utilitysection {
    padding-top: 50px;
    gap: 67px 67px;
}

.utility_cards .title_up {
    margin: 24px 0 16px;
}

.utility_cards .description p {
    color: var(--secondaryColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.utility_cards {
    width: 25%;
}

.joinpresale-btn {
    margin: 48px 0 0;
    display: flex;
    justify-content: center;
}

/* Tokenomies Section */
.tokenomies {
    padding: 60px 0 160px;
    background: #0F0326;
}

.inner_tokenmoies {
    align-items: center;
}

.tokenomies .top-heading {
    color: #1F0B41;
}

.tokenomies_left ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    border-bottom: 1px solid #1C0B3D;
}

.tokenomies_left {
    width: 56%;
    padding-top: 10px;
}

.tokenomies_right {
    width: 44%;
    text-align: right;
}

.tokenomies_left ul li .token-point {
    font-family: var(--mainFont);
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.tokenomies_left ul li .title_up {
    margin: 0;
    color: var(--greenColor);
    font-size: 28px;
    font-family: var(--secondaryFont);
    font-weight: 400;
}

.tokenomies_right img {
    height: 500px;
}

/* Benefit Section */
.innerperks_section {
    gap: 16px 16px;
    padding-top: 42px;
}

.perks-cards {
    width: 33.3%;
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF 31.06%, #F4F1F9 100%);
    transition: all .5s linear;
}

.perks-cards:hover {
    transform: scale(1.02);
    transition: all .5s linear;
    overflow: hidden;
}

.perks-cards .title_up {
    margin: 24px 0 16px;
}

.perks-cards .description {
    display: flex;
    flex-direction: column;
    gap: 46px 46px;
    justify-content: space-between;
}

.perks-cards .description p {
    color: var(--lightTextColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.perks-cards .description a {
    display: flex;
    align-items: center;
    gap: 8px 8px;
    color: var(--blackColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
}

/* Streaming Section */
.innerstreaming-section {
    border-radius: 16px;
    background: radial-gradient(70.5% 100.11% at 72.64% 38.61%, #9E6FF4 0%, #0F0326 87%);
    overflow: hidden;
}

.streaming-blocks h2 {
    margin: 0;
}

.streaming-blocks p {
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 16px 0 48px;
}

.streaming-left {
    padding-left: 144px;
    width: 640px;
}

.streaming-blocks {
    gap: 94px 94px;
    align-items: center;
}

.streaming-right {
    width: calc(100% - 604px);
}

.innerstreaming-section .banner_slide_inner {
    top: 7%;
}

.streaming-right {
    text-align: right;
}

.streaming-right img {
    width: 600px;
    height: 600px;
    object-fit: cover;
}

/* Roadmap Section */
.roadmap_section {
    padding-top: 40px;

}

.innerroadmap_section {
    padding-top: 35px;
}

.roadmap-blocks {
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF 29.91%, #F4F1F9 100%);
}

.roadmap-blocks ul {
    list-style: disc;
    padding-left: 18px;
}

.roadmap-blocks ul li {
    color: var(--lightTextColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 2px;

}

.title_big {
    color: var(--blackColor);
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
}

.innerroadmap_section {
    gap: 35px 35px;
}

.roadmap-blocks .title_big {
    margin: 8px 0 16px;
}

.roadmap-blocks {
    width: 33%;
}

.innerroadmap_section .roadmap-blocks:nth-child(2) {
    margin-top: 40px;
}

.innerroadmap_section .roadmap-blocks:nth-child(3) {
    margin-top: 80px;
}

/* acc FAQ CSS */
.faqsection_wrapper {
    padding-bottom: 100px;
}

.faq-head {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.faq_btn {
    margin: 28px 0 40px;
}

.tab-active.black_btn {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.lightfill_btn {
    background: #F7F9FB;
    color: var(--primaryColor);
    border-color: #F7F9FB;
}

.faq_btn a.btn {
    margin: 0 10px;
    font-size: 1.4rem;
    font-family: var(--mainFont);
    font-weight: var(--boldWeight);
    display: inline-block;
}

.acc {
    margin: 0 auto 0;
    width: 100%;
}

.acc__panel a {
    color: var(--purpleColor);
}

.acc__card {
    position: relative;
    background: var(--whiteColor);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.acc__title {
    cursor: pointer;
    color: var(--blackColor);
    display: block;
    position: relative;
    font-weight: var(--mediumWeight);
    font-size: 24px;
    line-height: 130%;
    padding-right: 60px;
}

.acc__title::after {
    width: 16px;
    height: 16px;
    background: url(/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/faqicn-up.png) no-repeat;
    position: absolute;
    right: 10px;
    content: " ";
    top: 34px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.acc__title.active::after {
    background: url(/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/faqicn-down.png) no-repeat;
    top: 34px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.acc__panel {
    display: none;
    margin: 0;
    padding: 10px 60px 0 0;
    color: #434356;
    font-size: 16px;
    line-height: 150%;
}

.question-block p {
    color: #231F20;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;

}

.question-block {
    align-items: center;
    gap: 8px 8px;
    margin-bottom: 10px;
}

footer {
    padding-bottom: 40px;
}

.footer_wrap {
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF 31.06%, #F4F1F9 100%);
    padding: 50px 34px;
}

.innerfooter_section {
    display: flex;
    justify-content: space-between;
}

.footer_col.col_one,
.footer_col.col_three {
    width: 18%;
}

.footer_col.col_two {
    width: 64%;
}

.footer_col.col_one a img {
    max-width: 138px;
    width: 100%;
}

.footer_col.col_one p {
    color: var(--whiteColor);
    font-size: 1.6rem;
    font-weight: var(--mediumWeight);
    font-family: var(--secondaryFont);
    line-height: 26px;
    padding: 24px 0 28px;
    margin: 0;
    text-align: justify;
    max-width: 550px;
}

.footer_col ul.social_icons li a img {
    object-fit: contain;
    width: 24px;
    height: 24px;
}

.footer-bottom {
    padding: 100px 0 0;
}

ul.footer-social-icons {
    gap: 12px 12px;
    justify-content: flex-end;
}

.footer-bottom {
    justify-content: space-between;
}

.footer-bottom ul {
    gap: 24px 24px;
}

.footer-bottom ul li a,
.footer-bottom ul li {
    color: #434356;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.faq-wrapper {
    gap: 86px 86px;
    align-items: center;
}

.faq-left,
.faq-right {
    width: 50%;
}

.faq-left img {
    max-width: 550px;
}

.faq-left .assets_header {
    max-width: 384px;
}

.footer_col.col_two ul.footer-lists.d-flex {
    justify-content: center;
    gap: 32px 32px;
}

.footer_col.col_two ul.footer-lists.d-flex li a {
    color: var(--blackColor);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.menu-item.active:before {
    content: "";
    position: absolute;
    top: 32%;
    left: -9px;
    width: 6px;
    height: 6px;
    background: url(/web/20240221043442im_/https://deestream.com/wp-content/themes/custom-theme/assets/img/star.png);
    border-radius: 100px;
    background-repeat: no-repeat;
    background-size: initial;
}

.utility_section .top-heading {
    color: #A681E9;
}

.footer_col.col_two ul.footer-lists.d-flex li a:hover,
.footer-bottom ul li a:hover {
    color: #b796f7;
}

ul.footer-social-icons.d-flex li:hover {
    filter: opacity(0.8);
}

.perks-cards:hover a.btn-link img {
    transform: rotate(45deg);
    transition: .5s ease;
}

.perks-cards a.btn-link img {
    transition: .5s ease;
}

.content-wrapper p {
    color: var(--lightTextColor);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding-bottom: 10px;
}

.content-wrapper {
    padding: 100px 0;
}

.content-wrapper h1 {
    color: var(--blackColor);
    font-size: 48px;
    font-weight: var(--mediumWeight);
    line-height: 100%;
    letter-spacing: -0.96px;
    margin-top: -58px;
    margin-bottom: 42px;
}

.content-wrapper {
    padding: 220px 0 70px;
}

.content-wrapper h4.title_up {
    margin: 16px 0;
}

.page-template-privacy-policy .main_nav.navbar,
.page-template-term-conditions .main_nav.navbar {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    background: #29174b;
}

.footer_col.col_two ul.footer-lists.d-flex li.active a {
    color: #a4a4ff;
}
.navbar-collapse .menu-item .menu-link:hover {
    color: #e3dfdf;
}
/* media */
@media(min-width: 1441.98px) {
    .container {
        max-width: 80%;
    }

}

@media(min-width: 1920.98px) {
    .container {
        max-width: 1900px;
    }
}

@media (max-width: 1680px){
    .main_heading {
        font-size: 56px;
    }
}

@media (max-width: 1440px) {
    .navbar-collapse .navbar-nav {
        gap: 48px 48px;
    }

    .banner-image img {
        max-width: 579px;
        height: 670px;
    }

    .inner_worksection {
        gap: 32px 32px;
    }

    .work_img_section img {
        height: 220px;
    }

    .work_img_section {
        height: 292px;
    }

    .utility_cards .description p {
        font-size: 14px;
    }

    .top-heading {
        font-size: 125px;
    }
}

@media(max-width: 1399px) {
    .container {
        max-width: 1200px;
    }

    .main_heading {
        font-size: 58px;
    }

    .banner_slide_inner .slidecont-wrap .slide-content,
    .banner_slide_inner ul.flex-row .slide-content span {
        font-size: 18px;
    }

    .banner_benfit {
        padding: 85px 0 0;
    }

    .banner_slide_inner {
        padding: 12px 68px;
        top: 18%;
    }

    .top-heading {
        font-size: 115px;
    }

    .heading {
        font-size: 40px;
        margin-top: -45px;
    }

    .title_up {
        font-size: 22px;
    }

    .tokenomies_left ul li .token-point,
    .tokenomies_left ul li .title_up {
        font-size: 24px;
    }

    .tokenomies_right img {
        height: 440px;
    }

    .streaming-right img {
        width: 500px;
        height: 500px;
    }

    .streaming-blocks p {
        margin: 16px 0 40px;
    }

    .title_big {
        font-size: 26px;
    }

    .tokenomies {
        padding: 60px 0 120px;
    }

}

@media(max-width: 1280px) {

    .common-padding {
        padding: 60px 0;
    }

    .banner-image img {
        max-width: 520px;
        height: 620px;
    }

    .main_heading {
        font-size: 48px;
        max-width: 500px;
    }

    .banner_benfit {
        padding: 72px 0 0;
    }

    .howit_work {
        padding-bottom: 110px;
    }

    .inner_worksection {
        padding-top: 15px;
    }

    .inner_utilitysection {
        padding-top: 30px;
    }

    .faq-left img {
        max-width: 510px;
    }

    .acc__title {
        font-size: 20px;
    }

    .tokenomies_left ul li .token-point,
    .tokenomies_left ul li .title_up {
        font-size: 20px;
    }

    .work_img_section {
        height: 265px;
    }

    .work_img_section img {
        height: 185px;
    }

    .roadmap-blocks {
        padding: 25px;
    }

}


@media(max-width: 1279.98px) {
    .container {
        max-width: 1100px;
        padding: 0 40px;
    }

    .navbar-collapse {
        gap: 20px 20px;
    }

    .navbar-collapse .navbar-nav {
        gap: 20px 20px;
    }

    .nav-right {
        gap: 8px 8px;
    }

    .nav-right li a {
        padding: 11px 28px;
    }
}

@media (max-width: 1024px) {
    .top-heading {
        font-size: 85px;
    }

    .heading {
        font-size: 34px;
        margin-top: -35px;
    }

    .tokenomies_right img {
        height: 340px;
    }

    .banner_benfit {
        gap: 25px 25px;
    }

    .banner_benfit li {
        gap: 5px 5px;
        font-size: 15px;
    }

    .banner_benfit li img {
        max-width: 18px;
    }

    .work_desc_section {
        padding: 15px 15px 35px;
    }

    .inner_utilitysection {
        gap: 35px 35px;
    }

    .tokenomies_left ul li {
        padding: 12px 0px;
    }

    .inner_tokenmoies {
        gap: 20px 20px;
    }

    .faq-wrapper {
        gap: 45px 45px;
    }

    .acc__title {
        font-size: 18px;
        padding-right: 28px;
    }

    .inner_benefits_section {
        gap: 50px 50px;
    }

    .benefit-cards .title_up {
        margin: 12px 0 15px;
        font-size: 18px;
    }

    #stream_sec {
        padding-top: 0;
        padding-bottom: 0;
    }

    .roadmap_section {
        padding-bottom: 20px;
    }

    .innerroadmap_section {
        gap: 18px 18px;
    }


    .howit_work {
        padding-bottom: 110px;
    }

    .faqsection_wrapper {
        padding-bottom: 80px;
    }

    .footer-bottom {
        padding: 80px 0 0;
    }

    .streaming-left {
        padding-left: 8%;
        width: 510px;
    }

    .streaming-right {
        width: calc(100% - 510px);
    }

    .streaming-blocks {
        gap: 60px 60px;
        align-items: center;
    }

    .streaming-right img {
        width: 380px;
        height: 450px;
    }

    .innerstreaming-section .banner_slide_inner {
        top: 3%;
    }

    .streaming-blocks p {
        font-size: 15px;
    }

    .faq-left img {
        max-width: 410px;
    }

    .main_heading {
        font-size: 42px;
        max-width: 452px;
    }

    .banner_benfit {
        padding: 52px 0 0;
    }

    .banner-image img {
        max-width: 470px;
        height: 580px;
    }

    .work_img_section {
        height: 215px;
    }

    .work_img_section img {
        height: 160px;
    }

    .content-wrapper h1 {
        font-size: 36px;
    }
}

@media(max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .howit_work {
        padding-bottom: 80px;
    }

    .inner_utilitysection {
        padding-top: 15px;
        gap: 20px 20px;
    }

    .tokenomies_left ul li .token-point,
    .tokenomies_left ul li .title_up {
        font-size: 18px;
    }

    .tokenomies_left ul li {
        padding: 8px 0px;
    }

    .tokenomies {
        padding: 50px 0 80px;
    }

    .perks-cards .title_up {
        margin: 18px 0 12px;
        font-size: 18px;
    }

    .perks-cards {
        padding: 20px 15px;
    }

    .perks-cards .description p {
        font-size: 14px;
        line-height: 145%;
    }

    .streaming-right img {
        width: 350px;
        height: 400px;
    }

    .streaming-blocks {
        gap: 40px 40px;
    }

    .banner_slide_inner .slidecont-wrap .slide-content,
    .banner_slide_inner ul.flex-row .slide-content span {
        font-size: 16px;
    }

    .streaming-blocks p {
        margin: 16px 0 25px;
    }

    .btn {
        gap: 10px 10px;
        padding: 12px 20px;
        font-size: 1.4rem;
    }

    .streaming-left {
        padding-left: 8%;
        width: 460px;
    }

    .streaming-right {
        width: calc(100% - 460px);
    }

    .streaming-blocks {
        gap: 30px 30px;
    }

    .title_big {
        font-size: 18px;
    }

    .roadmap-blocks {
        padding: 25px 18px;
    }

    .roadmap-blocks ul li {
        color: var(--lightTextColor);
        font-size: 14px;
        font-weight: 400;
    }

    .perks-cards .description {
        gap: 35px 35px;
    }

    .main_heading {
        font-size: 50px;
    }

    .banner-image img {
        max-width: 460px;
        height: 550px;
    }

    .banner_slide_inner {
        padding: 10px 68px;
        top: 14%;
    }

    .banner_desc {
        font-size: 1.5rem;
        margin: 20px 0 40px;
    }

    .common-padding {
        padding: 50px 0;
    }

    .top-heading {
        font-size: 90px;
    }

    .heading {
        font-size: 35px;
    }

    .benefit-cards {
        padding: 20px 18px;
    }

    .benefit-cards .title_up {
        margin: 10px 0 12px;
        font-size: 16px;
    }

    .inner_benefits_section {
        gap: 35px 35px;
    }

    .navbar-toggler:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        position: relative;
        border-bottom: 2px solid var(--secondaryColor);
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        position: absolute;
        content: '';
        left: 0;
        width: 40%;
        background: var(--secondaryColor);
        height: 2px;
        top: 0;
        border-radius: 4px;
    }

    .navbar-toggler.active .navbar-toggler-icon {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        border: 0;
    }

    .navbar-toggler.active .navbar-toggler-icon:before {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 100%;
    }

    .navbar-toggler.active .navbar-toggler-icon:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        top: 50%;
        width: 100%;
    }

    .navbar-collapse.active {
        display: block;
        position: absolute;
        top: 100%;
        width: 100%;
        left: -40px;
    }

    .navbar-toggler-icon:before {
        top: 50%;
        width: 70%;
    }

    [aria-expanded="true"] .navbar-toggler-icon {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        border: 0;
    }

    [aria-expanded="true"] .navbar-toggler-icon:before {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 100%;
    }

    [aria-expanded="true"] .navbar-toggler-icon:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        top: 50%;
        width: 100%;
    }

    .navbar-toggler-icon {
        padding: 0;
        width: 34px;
        height: 20px;
    }

    .navbar-collapse {
        background: #5b3b92;
        border: 1px solid var(--borderColor);
        padding: 30px;
        margin: 0 40px;
    }

    .navbar-toggler {
        transition: box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
    }

    .nav-right {
        margin: 20px 0 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .nav-right li:first-child a {
        padding-left: 0;
    }

    .section {
        padding: 70px 0 0;
    }

    .nav-right li a.login_link {
        padding: 0;
    }

    ul.nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tokenomies {
        padding: 50px 0 80px;
    }

    /* section#roadmap_sec {
        padding-top: 0;
    } */

    .content-wrapper {
        padding: 170px 0 60px;
    }
}

@media (max-width: 990.98px) {
    .footer_col.col_two ul.footer-lists.d-flex li a {
        font-size: 14px;
    }

    .footer_col.col_two ul.footer-lists.d-flex {
        gap: 20px 20px;
    }

    .banner_benfit li {
        font-size: 14px;
    }

    .benefit-cards .description p {
        font-size: 15px;
    }

    .banner_benfit {
        padding: 40px 0 0;
        flex-wrap: wrap;
    }

    .inner_worksection {
        padding-top: 0;
    }

    .utility_cards {
        width: 47%;
    }

    .inner_utilitysection {
        flex-wrap: wrap;
        gap: 60px 25px;
    }

    #stream_sec {
        padding-top: 0;
    }

    .streaming-left {
        padding-left: 4%;
    }

    .utility_section {
        padding: 50px 0 0;
    }

}

@media (max-width: 992px) {

    .main_heading {
        font-size: 34px;
        max-width: 380px;
        line-height: 40px;
    }

    .work_cards {
        width: 48%;
    }


    .utility_cards {
        width: 48%;
    }

    .utility_cards .description {
        max-width: 360px;
        margin: 0 auto;
    }

    .inner_worksection {
        gap: 22px 22px;
    }

    .banner-image {
        text-align: right;
    }

    .banner-image img {
        max-width: 410px;
        height: 510px;
    }

    .top-heading {
        font-size: 75px;
    }

    .heading {
        font-size: 30px;
        margin-top: -32px;
    }

    .inner_worksection {
        padding-top: 0;
    }

    .tokenomies_right img {
        height: 300px;
    }

}

@media (max-width: 820px) {
    .banner-image img {
        max-width: 340px;
        height: 420px;
    }
}

@media (max-width: 768px) {

    .faq-left,
    .faq-right,
    .tokenomies_left,
    .tokenomies_right {
        width: 100%;
    }

    .faq-wrapper {
        flex-direction: column;
    }

    .inner_tokenmoies {
        flex-direction: column-reverse;
        gap: 40px 20px;
    }

    .faq-left .assets_header {
        max-width: 100%;
    }

    .faq-left {
        text-align: center;
    }

    .utility_cards .description {
        max-width: 288px;
    }

    .tokenomies_left,
    .tokenomies_right {
        width: 100%;
    }

    .tokenomies_right {
        text-align: center;
    }

    .tokenomies .assets_header {
        text-align: center;
    }

    .inner_utilitysection,
    .innerperks_section,
    .innerroadmap_section {
        padding-top: 0;
    }

    .perks_section .joinpresale-btn {
        margin: 30px 0 0;
    }
}

@media(max-width: 767.98px) {
    .navbar-brand {
        width: 140px;
    }

    .btn {
        padding: 14px 27px;
    }

    .heading {
        font-size: 2.8rem;
        line-height: 34px;
    }

    .desc {
        margin: 0 0 30px;
    }

    .acc__title {
        padding-right: 50px;
        font-size: 1.6rem;
        line-height: 25px;
    }

    .acc__panel {
        padding: 10px 0 0;
        margin: 0;
    }

    .banner_slide_inner .slidecont-wrap .slide-content,
    .banner_slide_inner ul.flex-row .slide-content span {
        font-size: 14px;
    }

    .tokenomies_left ul li .token-point,
    .tokenomies_left ul li .title_up {
        font-size: 18px;
    }

    .tokenomies_left {
        padding-top: 0;
    }

    .tokenomies {
        padding: 50px 0 60px;
    }

    .roadmap_section {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .innerfooter_section {
        flex-direction: column;
        gap: 20px;
    }

    .footer_col.col_two ul.footer-lists.d-flex,
    ul.footer-social-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-top: 50px;
    }

    footer {
        padding-bottom: 0;
    }

    .footer-bottom ul {
        gap: 18px 18px;
    }

    .benefit_left,
    .benefit_right,
    .perks-cards,
    .roadmap-blocks,
    .footer_col.col_two {
        width: 100%;
    }


    .innerperks_section,
    .innerroadmap_section {
        flex-direction: column;
    }

    .inner_benefits_section {
        flex-direction: column-reverse;
    }

    .benefit_left img {
        width: 320px
    }

    .benefit_left {
        text-align: center;
    }


    .top-heading {
        font-size: 65px;
    }

    .work_desc_section .description p {
        font-size: 15px;
    }

    .howit_work {
        padding-bottom: 60px;
    }

    .innerroadmap_section .roadmap-blocks:nth-child(3),
    .innerroadmap_section .roadmap-blocks:nth-child(2) {
        margin-top: 30px;
    }

    .innerperks_section {
        gap: 30px 30px;
    }

    .acc__panel {
        font-size: 15px;
    }

    .banner-image img {
        height: 493px;
    }

    .work_img_section {
        height: 210px;
    }

    .innerroadmap_section {
        gap: 0;
    }
}

@media(max-width: 680px) {

    .banner_content,
    .banner-image {
        width: 100%;
    }

    .banner-image img {
        max-width: 100%;
        height: 325px;
    }

    .banner-image {
        text-align: center;
        order: 1;
        padding-top: 15px;
    }

    .banner_content {
        order: 2;
    }

    .main_heading {
        font-size: 30px;
        line-height: 35px;
    }

    .inner-banner_section {
        flex-direction: column;
        gap: 40px;
    }

    .tokenomies_right img {
        height: 280px;
    }

    .content-wrapper h1 {
        font-size: 30px;
    }
}

@media(max-width: 590.98px) {

    .inner_worksection,
    .footer-bottom.d-flex,
    .streaming-blocks {
        flex-direction: column;
    }

    .work_cards,
    .utility_cards {
        width: 100%;
    }

    .footer-bottom.d-flex {
        gap: 15px;
    }

    .streaming-left {
        padding: 6% 4% 12%;
        width: 100%;
        order: 2;
    }

    .streaming-right {
        width: 100%;
        order: 1;
    }

    .acc__panel {
        font-size: 15px;
    }

    .streaming-right img {
        width: 100%;
        height: 290px;
    }

    .footer_wrap {
        padding: 30px 24px;
    }

    .faq-left img {
        max-width: 330px;
    }

    .benefit_left img {
        width: 215px;
    }

    .title_up {
        font-size: 20px;
    }

    .inner_utilitysection,
    .innerperks_section,
    .innerroadmap_section {
        padding-top: 15px;
    }
}

@media(max-width: 480px) {

    .tokenomies_left ul li .token-point,
    .tokenomies_left ul li .title_up,
    .description p {
        font-size: 15px;
    }

    ul.footer-lists.d-flex,
    ul.copyright-section.d-flex,
    ul.privacypoilcy_section {
        flex-direction: column;
    }

    .footer_col.col_two ul.footer-lists.d-flex {
        gap: 15px 15px;
    }

    .footer_col.col_one,
    .footer_col.col_three {
        width: 100%;
    }

    .banner_desc {
        margin: 20px 0 25px;
    }

    .banner_benfit {
        padding: 25px 0 0;
        flex-wrap: wrap;
    }

    .footer-bottom ul {
        gap: 13px 10px;
    }

    .footer-bottom {
        padding-top: 35px;
    }

    .acc__title {
        padding-right: 45px;
    }

    .top-heading {
        font-size: 55px;
    }

    .container {
        padding: 0px 20px;
    }

    .navbar-collapse {
        padding: 30px 20px 30px 40px;
    }

    .heading {
        font-size: 2.5rem;
    }

    .content-wrapper p {
        font-size: 15px;
    }
    .tokenomies .heading {
        margin-bottom: 0;
    }
    .streaming-blocks {
        gap: 0;
    }
    .heading {
        margin-bottom: 20px;
    }
}

@media (max-width: 390px) {
    .banner_benfit {
        gap: 15px 15px;
    }

    .banner_benfit li {
        font-size: 13px;
    }
}
/*
     FILE ARCHIVED ON 04:34:42 Feb 21, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:00:39 Aug 31, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 0.74
  load_resource: 344.174
  PetaboxLoader3.resolve: 263.748
  PetaboxLoader3.datanode: 41.704
*/